home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / hydra_pop3.nasl < prev    next >
Text File  |  2005-03-31  |  4KB  |  104 lines

  1. #TRUSTED a330903223c7f3109e6657ecb92bf16dd9845cc15af64ca0257a37a1a6dd01e8d7ddd4ac901da4c7cf55afc9e862b934d719fa2c3048481b1ef84dfb0dc112371880c9404e9f7a0904c9a69d7da43b4bf91e0caab505581619c75baaf94ecd82f9c4bf291ac4fb3679a013e18b00591cdb40ded6c22b2e9c33b94327f84932a6448c4f1c0e59a2c640b8d77775ee7c6c3fdf742b525c7692157c08adb95bb18ad32f1421227dfd50a3d8cc4d26feb6ce8f1c86a39084e91054c644b7c615361bcb1c338815bb7fd1f89598624b27b0dcebefa617530e1f984c91532b118e378350acc3e20c3792d95837f1adc94b381a5c09f45c684c35639720db0d9599f6b5eb4c50017951879a838895dbed10fe7475079d84bdebb09978d1f074b74470eaf8173b9d9ea84e7113a0ab95ee1aae876c56a02a1b508d5e6d9c4ee59f71ac0759736fc97f7e40a4441811cc98ed559779278eb2bc2e772b7cf16e05ca306fbe4c36225c983fdf9aa302933da5b78bf2d3fda874d508e7682e2f39df65f71ba33ce779b638cf836b47443a1b95859445d0a464bd1e808324d13ff7d7e3fd4612dcd5cc0e4bbf2949c7f2f2068121b6d9d476de5efc3f5351bd1279bd758bdf9f9223aab1cd1e029216983188da3f03f565fbf4926952cf97e6990be1bbaa833849e8760224c40138dc10c927dde60c7c45b8f6ede6dd50f350d22e0d14803cb4
  2. #
  3. # This script was written by Michel Arboi <arboi@alussinan.org>
  4. #
  5. # GPL
  6. #
  7.  
  8. if (! defined_func("script_get_preference_file_location")) exit(0);
  9. if (! find_in_path("hydra")) exit(0);
  10.  
  11.  
  12. if(description)
  13. {
  14.  script_id(15881);
  15.  script_version ("1.2");
  16.  name["english"] = "Hydra: POP3";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This plugin runs Hydra to find POP3 accounts & passwords by brute force.
  21.  
  22. See the section 'plugins options' to configure it
  23. ";
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Brute force POP3 authentication with Hydra";
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_ATTACK);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Michel Arboi");
  33.  script_family(english:"Brute force attacks");
  34.  script_require_keys("Secret/hydra/logins_file", "Secret/hydra/passwords_file");
  35.  script_require_ports("Services/pop3", 110);
  36.  script_dependencies("hydra_options.nasl", "find_service.nes", "doublecheck_std_services.nasl");
  37.  exit(0);
  38. }
  39.  
  40. #
  41. throrough = get_kb_item("global_settings/thorough_tests");
  42. if ("yes" >!< throrough) exit(0);
  43. logins = get_kb_item("Secret/hydra/logins_file");
  44. passwd = get_kb_item("Secret/hydra/passwords_file");
  45. if (logins == NULL || passwd == NULL) exit(0);
  46.  
  47. port = get_kb_item("Services/pop3");
  48. if (! port) port = 110;
  49. if (! get_port_state(port)) exit(0);
  50.  
  51. timeout = get_kb_item("/tmp/hydra/timeout"); timeout = int(timeout);
  52. tasks = get_kb_item("/tmp/hydra/tasks"); task = int(tasks);
  53.  
  54. empty = get_kb_item("/tmp/hydra/empty_password");
  55. login_pass = get_kb_item("/tmp/hydra/login_password");
  56. exit_asap = get_kb_item("/tmp/hydra/exit_ASAP");
  57. tr = get_kb_item("Transports/TCP/"+port);
  58.  
  59. i = 0;
  60. argv[i++] = "hydra";
  61. argv[i++] = "-s"; argv[i++] = port;
  62. argv[i++] = "-L"; argv[i++] = logins;
  63. argv[i++] = "-P"; argv[i++] = passwd;
  64. s = "";
  65. if (empty) s = "n";
  66. if (login_pass) s+= "s";
  67. if (s)
  68. {
  69.   argv[i++] = "-e"; argv[i++] = s;
  70. }
  71. if (exit_asap) argv[i++] = "-f";
  72. if (tr >= ENCAPS_SSLv2) argv[i++] = "-S";
  73.  
  74. if (timeout > 0)
  75. {
  76.   argv[i++] = "-w";
  77.   argv[i++] = timeout;
  78. }
  79. if (tasks > 0)
  80. {
  81.   argv[i++] = "-t";
  82.   argv[i++] = tasks;
  83. }
  84.  
  85. argv[i++] = get_host_ip();
  86. argv[i++] = "pop3";
  87.  
  88. report = "";
  89. results = pread(cmd: "hydra", argv: argv, nice: 5);
  90. foreach line (split(results))
  91. {
  92.   v = eregmatch(string: line, pattern: 'host:.*login: *(.*) password: *(.*)$');
  93.   if (! isnull(v))
  94.   {
  95.     l = chomp(v[1]);
  96.     p = chomp(v[2]);
  97.     report = strcat(report, 'username: ', l, '\tpassword: ', p, '\n');
  98.   }
  99. }
  100.  
  101. if (report)
  102.   security_hole(port: port, 
  103.     data: 'Hydra was able to break the following POP3 accounts:\n' + report);
  104.